home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-26 | 536 b | 29 lines | [TEXT/CWIE] |
-
- // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
- // free source code - do whatever you like with it
-
- // universal flat resource file access
-
- #ifndef resfile_flat_H
- #define resfile_flat_H
-
- #include "common.h"
-
- #include "resfile.h"
- class stream; // forward declaration
-
- class resfile_flat : public resfile {
- public:
-
- resfile_flat( stream* file ); // stream is a resource file opened by user
- virtual ~resfile_flat();
-
- virtual void* get_resource( long type, int id );
-
- private:
- stream& m_file;
- };
-
- #endif
-
-